ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing Namespace / ScannerCollection<T> Class / Find Method / Find(LambdaExpression) Method
Key selector expression of an index, see KeySelector.

In This Topic
    Find(LambdaExpression) Method
    In This Topic
    Finds an index in the collection by its key selector.
    Syntax
    'Declaration
     
    
    Public Overloads Function Find( _
       ByVal keySelector As System.Linq.Expressions.LambdaExpression _
    ) As IIndexScanner(Of T)
    public IIndexScanner<T> Find( 
       System.Linq.Expressions.LambdaExpression keySelector
    )

    Parameters

    keySelector
    Key selector expression of an index, see KeySelector.

    Return Value

    An index with the given key selector, if it is found; otherwise, null.
    See Also